home *** CD-ROM | disk | FTP | other *** search
- Path: holly.ACNS.ColoState.EDU!not-for-mail
- From: corbyh@holly.ACNS.ColoState.EDU (Corby S. Hudnall)
- Newsgroups: comp.lang.c++
- Subject: Re: Dumb ques: Creating Libs...
- Date: 26 Feb 1996 17:52:15 -0700
- Organization: Colorado State University, Fort Collins, CO 80523
- Message-ID: <4gtkjv$3bc4@holly.ACNS.ColoState.EDU>
- References: <4ge78f$a6s@tzlink.j51.com>
- NNTP-Posting-Host: holly.acns.colostate.edu
- X-Newsreader: TIN [version 1.2 PL2]
-
- Raffi Krikorian (rif-raf@j51.com) wrote:
- : I own Borland C++ 4.51 (4.52 is in the mail) and I have a couple of
- : functions I would like to put into a library. I have no idea how to do
- : this and I have no idea where my manuals are. Can anybody help? I want
- : to put them into a library that I can call no matter what target
- : application I am writing. Is this possible? Thanks in advance.
-
- Useing the IDE, you can create a static library (*.lib) file and then
- link it into whatever you want. I can't remember the name of the DOS
- program to do this. Drop me a line if you want me to look it up later.
-
- // ------------ BEGIN SIGNATURE ---------------
- #include <iostream.h>
- void main()
- {
- cout<<"\aName:\tCorby S. Hudnall\n";
- cout<<"School:\tColorado State University\n";
- cout<<"EMail\tcorbyh@holly.colostate.edu\n";
- cout<<"URL\thttp://holly.colostate.edu/~corbyh/\n";
- }
- // ------------- END SIGNATURE ----------------
-
-